home *** CD-ROM | disk | FTP | other *** search
/ Long Ban 3 / Long Ban 3 - Disc 2.iso / mac / DISK2 / DATA / mov.Dxr / 00052.ls < prev    next >
Encoding:
Text File  |  1997-03-24  |  1.0 KB  |  51 lines

  1. on exitFrame
  2.   if the movieTime of sprite 22 < the duration of member the memberNum of sprite 22 then
  3.     go(the frame)
  4.   else
  5.     go(1)
  6.   end if
  7. end
  8.  
  9. on mouseDown
  10.   set sp to the clickOn
  11.   case sp of
  12.     2:
  13.       go("s1")
  14.     3:
  15.       go("s2")
  16.     4:
  17.       go("s3")
  18.     5:
  19.       go("s4")
  20.     6:
  21.       go("s5")
  22.     7:
  23.       go("s6")
  24.     12:
  25.       set the visible of sprite 12 to 0
  26.       set the visible of sprite 22 to 0
  27.       go(#next)
  28.       set the visible of sprite 22 to 1
  29.       set the visible of sprite 12 to 1
  30.     13:
  31.       set the visible of sprite 8 to 1
  32.       set the visible of sprite 9 to 1
  33.       set the movieRate of sprite 22 to 0
  34.       buttonaction(sp)
  35.       go(1, "menu")
  36.     14:
  37.       set the visible of sprite 8 to 1
  38.       set the visible of sprite 9 to 1
  39.       set the movieRate of sprite 22 to 0
  40.       buttonaction(sp)
  41.       quit()
  42.     15:
  43.       set the visible of sprite 15 to 0
  44.       set the movieRate of sprite 22 to 0
  45.       set the movieTime of sprite 22 to 0
  46.       buttonaction(sp)
  47.       go(1)
  48.       set the visible of sprite 15 to 1
  49.   end case
  50. end
  51.